ae56d3685c
* refactor(nc-android): move nc android into mobile/nym-connect rename the android app ID to "nym_connect" * chore(nc-mobile): restore dist directory * fix: typo * chore: restore gitkeep * chore: track Cargo.lock * ci: trigger ts lint workflow on pull request * refactor(nym-connect): new structure move temp mobile version under nym-connect-new/mobile * refactor(nym-connect): new structure move temp desktop version under nym-connect-new/desktop * refactor(nym-connect): new structure rename nym-connect-new to nym-connect * refactor(nym-connect): new structure restore lost .gitkeep * refactor(nym-connect): new structure restore lost .gitkeep * fix(nym-connect-desktop): broken relative paths * fix(nym-connect-mobile): add todo comment about broken deps * ci(nym-connect): fix relative paths * ci(nym-connect): rename workflow
18 lines
402 B
JavaScript
18 lines
402 B
JavaScript
const path = require('path');
|
|
const { default: merge } = require('webpack-merge');
|
|
const common = require('./webpack.common');
|
|
|
|
const entry = {
|
|
app: path.resolve(__dirname, 'src/index.tsx'),
|
|
growth: path.resolve(__dirname, 'src/growth.tsx'),
|
|
log: path.resolve(__dirname, 'src/log.tsx'),
|
|
};
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'production',
|
|
node: {
|
|
__dirname: false,
|
|
},
|
|
entry,
|
|
});
|