mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
target: 'web',
|
||
|
mode: 'production',
|
||
|
entry: "./_build/app/client/browserCheck.js",
|
||
|
output: {
|
||
|
path: path.resolve("./static"),
|
||
|
filename: "browser-check.js"
|
||
|
},
|
||
|
};
|