mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 14:23:07 +02:00
20 lines
437 B
JavaScript
20 lines
437 B
JavaScript
|
|
const { NxWebpackPlugin } = require('@nx/webpack');
|
||
|
|
const { join } = require('path');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
output: {
|
||
|
|
path: join(__dirname, '../../dist/apps/my-nest-app'),
|
||
|
|
},
|
||
|
|
plugins: [
|
||
|
|
new NxWebpackPlugin({
|
||
|
|
target: 'node',
|
||
|
|
compiler: 'tsc',
|
||
|
|
main: './src/main.ts',
|
||
|
|
tsConfig: './tsconfig.app.json',
|
||
|
|
assets: ['./src/assets'],
|
||
|
|
optimization: false,
|
||
|
|
outputHashing: 'none',
|
||
|
|
}),
|
||
|
|
],
|
||
|
|
};
|