mirror of
https://github.com/sahadev/vue-component-creater-ui.git
synced 2025-06-04 20:14:05 +08:00
22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
css: { extract: false },
|
|
chainWebpack: (config) => {
|
|
// config.resolve.alias.set("vue$", "vue/dist/vue.esm.js");
|
|
// config.resolve.alias.set('vue', '@vue/compat/dist/vue.esm-browser.prod.js')
|
|
},
|
|
|
|
publicPath: process.env.PUBLIC_PATH,
|
|
productionSourceMap: false,
|
|
|
|
pluginOptions: {
|
|
quasar: {
|
|
importStrategy: "kebab",
|
|
rtlSupport: false,
|
|
},
|
|
},
|
|
|
|
transpileDependencies: ["quasar"],
|
|
};
|