mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
synced 2025-10-29 09:52:31 +00:00
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
// Source files
|
|
src: path.resolve(__dirname, '../src'),
|
|
|
|
// Production build files
|
|
build: path.resolve(__dirname, '../build'),
|
|
|
|
// Static files that get copied to build folder
|
|
public: path.resolve(__dirname, '../public'),
|
|
};
|