mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
a69f7af055
* Move ide.css to editor.pug * Import angular-csp.css GitOrigin-RevId: e0f4792690567e785e124d742e0332ddcf1155e6
14 lines
338 B
JavaScript
14 lines
338 B
JavaScript
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
|
const merge = require('webpack-merge')
|
|
|
|
const base = require('./webpack.config')
|
|
|
|
module.exports = merge(base, {
|
|
mode: 'development',
|
|
|
|
plugins: [new MiniCssExtractPlugin()],
|
|
|
|
// Karma configures entry & output for us, so disable these
|
|
entry: null,
|
|
output: null
|
|
})
|