chore(ui): add npm package and dockerfile

# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-11-06 16:37:42 -08:00
parent a2c4c12384
commit afab6569f0
11 changed files with 278 additions and 13 deletions

View file

@ -0,0 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
// TODO: Remove this once we fix the build errors
ignoreBuildErrors: true,
},
output: 'standalone',
};
module.exports = nextConfig;