Sha256: abf8ffdadd05fbf1119f4e4772fec7765523b78c719881cc6f184cc21e9d18a3
Contents?: true
Size: 339 Bytes
Versions: 2
Compression:
Stored size: 339 Bytes
Contents
const path = require('path') const config = require('./webpack.config') config.devServer = { host: 'localhost', port: '8081' }; const index = path.resolve(__dirname, '../spec/javascripts/index.browser.js'); config.entry = { test: [`mocha!${index}`] }; config.output.publicPath = 'http://localhost:8081/' module.exports = config
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
code42template-2.1.0 | templates/webpack.config.test.browser.js |
code42template-2.0.0 | templates/webpack.config.test.browser.js |