mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
9 lines
No EOL
258 B
JavaScript
9 lines
No EOL
258 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
paths: function (paths, env) {
|
|
paths.appIndexJs = path.resolve(__dirname, 'nest_frontend/index.js');
|
|
paths.appSrc = path.resolve(__dirname, 'nest_frontend');
|
|
return paths;
|
|
},
|
|
} |