Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/tax/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const nextConfig = {
if (!dev && isServer) {
config.devtool = 'source-map'
}
config.cache = false; // Disable caching for server builds
return config
},
serverRuntimeConfig: {
Expand Down
5 changes: 3 additions & 2 deletions apps/tax/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"outputPath": "dist/apps/tax"
"outputPath": "dist/apps/tax",
},
"configurations": {
"development": {
Expand All @@ -32,7 +32,8 @@
"assets": [],
"compiler": "tsc",
"target": "node",
"webpackConfig": "apps/tax/webpack.config.js"
"webpackConfig": "apps/tax/webpack.config.js",
"cache": false
},
"configurations": {
"development": {},
Expand Down
Binary file added apps/tax/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/tax/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/tax/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/tax/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/tax/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/tax/public/favicon.ico
Binary file not shown.
Binary file not shown.
338 changes: 338 additions & 0 deletions apps/tax/public/fonts/ibm-plex-sans-v7-latin-300.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
338 changes: 338 additions & 0 deletions apps/tax/public/fonts/ibm-plex-sans-v7-latin-600.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
371 changes: 371 additions & 0 deletions apps/tax/public/fonts/ibm-plex-sans-v7-latin-italic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
339 changes: 339 additions & 0 deletions apps/tax/public/fonts/ibm-plex-sans-v7-latin-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 4 additions & 2 deletions apps/tax/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const { composePlugins, withNx } = require('@nx/webpack')

// Nx plugins for webpack.
// Nx plugins for webpack.
module.exports = composePlugins(withNx(), (config) => {
// Note: This was added by an Nx migration. Webpack builds are required to have a corresponding Webpack config file.
// See: https://nx.dev/recipes/webpack/webpack-config-setup
// Disable caching
config.cache = false

return config
})
Loading