mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-01-24 05:17:24 +02:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
const mix = require('laravel-mix');
|
|
|
|
mix.setPublicPath("app");
|
|
|
|
mix.react('ui/index.js', 'bundle.js')
|
|
.sass('ui/index.scss', 'bundle.css')
|
|
|
|
if (!mix.inProduction()) {
|
|
mix.webpackConfig({
|
|
devtool: 'source-map'
|
|
})
|
|
.sourceMaps()
|
|
}
|