mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 09:52:00 +00:00
12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
const { getCommonWebpackOptions } = require('./webpack.common');
|
|
|
|
const inputEntry = './src/server.ts';
|
|
const outputDir = '../build';
|
|
const outputFilename = 'index.js';
|
|
|
|
module.exports = getCommonWebpackOptions({
|
|
inputEntry,
|
|
outputDir,
|
|
outputFilename,
|
|
});
|