|
|
@ -83,6 +83,7 @@ globalTasks.then(() => { |
|
|
|
homeDir: './client', |
|
|
|
output: './assets/js/$name.min.js', |
|
|
|
alias: ALIASES, |
|
|
|
shim: SHIMS, |
|
|
|
plugins: [ |
|
|
|
fsbx.EnvPlugin({ NODE_ENV: (dev) ? 'development' : 'production' }), |
|
|
|
fsbx.VuePlugin(), |
|
|
@ -105,7 +106,8 @@ globalTasks.then(() => { |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
const bundleApp = fuse.bundle('app').shim(SHIMS).instructions('> index.js') |
|
|
|
const bundleVendor = fuse.bundle('vendor').instructions('~ index.js') |
|
|
|
const bundleApp = fuse.bundle('app').instructions('!> [index.js]') |
|
|
|
const bundleSetup = fuse.bundle('configure').instructions('> configure.js') |
|
|
|
|
|
|
|
switch (mode) { |
|
|
|