Lines Matching defs:webpackConfig
37 const webpackConfig = {
149 webpackConfig.cache.cacheDirectory = path.resolve(process.env.cachePath, '.lite_cache');
150 webpackConfig.entry = loadEntryObj(process.env.projectPath, process.env.DEVICE_LEVEL,
152 webpackConfig.output.path = path.resolve(__dirname, process.env.buildPath)
153 webpackConfig.plugins = [
165 webpackConfig.resolve = {
175 webpackConfig.plugins.push(new CopyPlugin({
187 webpackConfig.optimization = {
200 webpackConfig.plugins.push(
213 webpackConfig.devtool = false
216 webpackConfig.devtool = 'source-map'
217 webpackConfig.mode = 'production';
218 webpackConfig.plugins.push(
221 webpackConfig.output.sourceMapFilename = '_releaseMap/[name].js.map'
224 return webpackConfig;