mirror of
https://github.com/ngthanhvu/kr-phim.git
synced 2026-08-10 16:47:46 +00:00
- Removed Supabase authentication logic from xem/[slug].vue and yeu-thich.vue. - Updated favorite and watch later messages to be device-specific. - Removed unused user state and authentication initialization. - Deleted supabase.ts plugin file and related configurations. - Updated nuxt.config.ts to remove Supabase runtime configuration. - Removed Supabase dependencies from package.json and package-lock.json. - Adjusted Dockerfile for development environment. - Added admin layout and pages for managing settings, movies, and users. - Implemented admin dashboard with statistics and recent activities. - Created movie and user management interfaces with search functionality.
39 lines
1.7 KiB
TypeScript
39 lines
1.7 KiB
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
app: {
|
|
head: {
|
|
titleTemplate: (titleChunk) => titleChunk ? `${titleChunk}` : 'CineK - Xem phim Hàn Quốc online',
|
|
meta: [
|
|
{ name: 'description', content: 'CineK là website xem phim Hàn Quốc online với phụ đề Vietsub, thuyết minh, lồng tiếng, hình ảnh sắc nét và kho phim được cập nhật thường xuyên.' },
|
|
{ property: 'og:site_name', content: 'CineK' },
|
|
{ property: 'og:type', content: 'website' },
|
|
{ property: 'og:title', content: 'CineK - Xem phim Hàn Quốc online' },
|
|
{ property: 'og:description', content: 'Xem phim Hàn Quốc online, phim bộ, phim lẻ, show và nội dung mới cập nhật với trải nghiệm xem mượt trên mọi thiết bị.' },
|
|
{ property: 'og:image', content: '/icon.png' },
|
|
{ name: 'twitter:card', content: 'summary_large_image' },
|
|
{ name: 'twitter:title', content: 'CineK - Xem phim Hàn Quốc online' },
|
|
{ name: 'twitter:description', content: 'Kho phim Hàn Quốc online được cập nhật thường xuyên, hỗ trợ Vietsub, thuyết minh và lồng tiếng.' },
|
|
{ name: 'theme-color', content: '#020617' },
|
|
],
|
|
link: [
|
|
{ rel: 'icon', type: 'image/png', href: '/icon.png' },
|
|
{ rel: 'apple-touch-icon', href: '/icon.png' },
|
|
],
|
|
},
|
|
},
|
|
devServer: {
|
|
host: '0.0.0.0',
|
|
port: 3002,
|
|
},
|
|
css: ['~/assets/css/main.css'],
|
|
vite: {
|
|
plugins: [
|
|
tailwindcss(),
|
|
],
|
|
},
|
|
})
|