You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
// const ScriptSetup = require("unplugin-vue2-script-setup/webpack").default;
|
|
module.exports = {
|
|
parallel: false,
|
|
configureWebpack: {
|
|
plugins: [
|
|
// ScriptSetup({
|
|
// /* options */
|
|
// }),
|
|
],
|
|
},
|
|
chainWebpack(config) {
|
|
// disable type check and let `vue-tsc` handles it
|
|
config.plugins.delete("fork-ts-checker");
|
|
},
|
|
};
|