From 00c8abe9b87309e7b20e2369596b13575fbd234e Mon Sep 17 00:00:00 2001 From: Kyle Kemp Date: Sat, 3 Aug 2024 10:01:18 -0500 Subject: [PATCH] really fix build --- src/app/app-routing.module.ts | 2 +- src/app/shared/shared.module.ts | 2 +- tailwind.config.js | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index e6dba7c..74cc5dc 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,6 +1,6 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; -import { PageNotFoundComponent } from './shared/components/page-not-found'; +import { PageNotFoundComponent } from './shared/components/page-not-found/page-not-found.component'; import { DetailRoutingModule } from './detail/detail-routing.module'; import { HomeRoutingModule } from './home/home-routing.module'; diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index 74d1389..330aff2 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; -import { PageNotFoundComponent } from './components/page-not-found'; +import { PageNotFoundComponent } from './components/page-not-found/page-not-found.component'; import { WebviewDirective } from './directives/'; @NgModule({ diff --git a/tailwind.config.js b/tailwind.config.js index eaa5c71..f2c7534 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,6 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,ts}"], - content: [], theme: { extend: {}, },