Giter VIP home page Giter VIP logo

Comments (5)

cre8 avatar cre8 commented on September 23, 2024 3

@Nazar-Brunarskyi someone gave me a tip by adding the information to the webpack.config.ts like:

const { NxAppWebpackPlugin } = require('@nx/webpack/app-plugin');
const { join } = require('path');

module.exports = {
  output: {
    path: join(__dirname, '../../dist/apps/issuer-backend'),
  },
  plugins: [
    new NxAppWebpackPlugin({
      target: 'node',
      compiler: 'tsc',
      main: './src/main.ts',
      tsConfig: './tsconfig.app.json',
      assets: ['./src/assets'],
      optimization: false,
      outputHashing: 'none',
      generatePackageJson: true,
      transformers: [{ name: '@nestjs/swagger/plugin' }],
    }),
  ],
};

@ndcunningham but maybe this should be referenced in the documentation for nestjs

from nx.

cre8 avatar cre8 commented on September 23, 2024 1

@cre8 thanks!! can you please share your project.json file for nestJS so I can have a look?

Sure:

{
  "name": "issuer-backend",
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/issuer-backend/src",
  "projectType": "application",
  "tags": [],
  "targets": {
    "init": {
      "executor": "nx:run-commands",
      "options": {
        "commands": [
          "cp apps/issuer-backend/.env.example apps/issuer-backend/.env"
        ]
      }
    },
    "serve": {
      "executor": "@nx/js:node",
      "defaultConfiguration": "development",
      "options": {
        "buildTarget": "issuer-backend:build"
      },
      "configurations": {
        "development": {
          "buildTarget": "issuer-backend:build:development"
        },
        "production": {
          "buildTarget": "issuer-backend:build:production"
        }
      }
    },
    "container": {
      "executor": "@nx-tools/nx-container:build",
      "dependsOn": ["build"],
      "options": {
        "engine": "docker",
        "push": true,
        "metadata": {
          "images": ["ghcr.io/cre8/wallet/issuer-backend"],
          "load": true,
          "tags": ["latest"]
        }
      }
    }
  }
}

You do not need to reference the webpack file anywhere, nx will use it automatically.

from nx.

Nazar-Brunarskyi avatar Nazar-Brunarskyi commented on September 23, 2024 1

@cre8 it was really helpful thanks

from nx.

Nazar-Brunarskyi avatar Nazar-Brunarskyi commented on September 23, 2024

i have the same problem

from nx.

Nazar-Brunarskyi avatar Nazar-Brunarskyi commented on September 23, 2024

@cre8 thanks!!
can you please share your project.json file for nestJS so I can have a look?

from nx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.