Free and Open source Web Builder Framework. Next generation tool for building templates without coding
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
930 B

import path from 'path';
import webpack from 'webpack';
import pkg from './package.json';
const rootDir = path.resolve(__dirname);
export default ({ config }) => ({
...config,
output: {
...config.output,
filename: 'grapes.min.js',
// This will assign all exports to the global object
library: undefined,
},
devServer: {
...config.devServer,
static: [rootDir],
headers: { 'Access-Control-Allow-Origin': '*' },
allowedHosts: 'all',
},
resolve: {
...config.resolve,
modules: [
...(config.resolve && config.resolve.modules),
'src'
],
alias: {
...(config.resolve && config.resolve.alias),
jquery: 'utils/cash-dom',
backbone: `${rootDir}/node_modules/backbone`,
underscore: `${rootDir}/node_modules/underscore`,
}
},
plugins: [
new webpack.DefinePlugin({ __GJS_VERSION__: `'${pkg.version}'` }),
...config.plugins,
]
});