mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
53fbf664b5
* switch to font source for open sans * add 700 font weight
28 lines
534 B
JavaScript
28 lines
534 B
JavaScript
module.exports = {
|
|
chainWebpack: config => config.resolve.symlinks(false),
|
|
// transpileDependencies: [
|
|
// // 'node_modules/quill'
|
|
// /\/node_modules\/quill\//
|
|
// ]
|
|
pluginOptions: {
|
|
webpackBundleAnalyzer: {
|
|
openAnalyzer: false,
|
|
},
|
|
},
|
|
configureWebpack: {
|
|
devServer: {
|
|
disableHostCheck: true,
|
|
},
|
|
},
|
|
css: {
|
|
loaderOptions: {
|
|
sass: {
|
|
prependData: `
|
|
@import "@/n8n-theme-variables.scss";
|
|
`,
|
|
},
|
|
},
|
|
},
|
|
publicPath: process.env.VUE_APP_PUBLIC_PATH ? process.env.VUE_APP_PUBLIC_PATH : '/',
|
|
};
|