You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

331 lines
8.7 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import colors from "vuetify/es5/util/colors";
  2. import path from 'path';
  3. import fs from 'fs';
  4. export default {
  5. // Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
  6. loading: false,
  7. head: {
  8. titleTemplate: "%s│ShowEasy-we make your show easy!",
  9. title: "showeasy-v2",
  10. htmlAttrs: {
  11. lang: "zh-TW",
  12. },
  13. meta: [
  14. {
  15. charset: "utf-8",
  16. },
  17. {
  18. name: "viewport",
  19. content: "width=device-width, initial-scale=1",
  20. },
  21. {
  22. hid: "description",
  23. name: "description",
  24. content:
  25. "ShowEasy致力發展一個讓人簡單搜尋、比價、訂購的會展整合平台,讓參展這件事變得不再困難。",
  26. },
  27. {
  28. hid: "keywords",
  29. name: "keywords",
  30. content: "ShowEasy,會展,展覽,會展運輸,展覽品運輸,展覽品出口,世貿展覽館",
  31. },
  32. {
  33. name: "format-detection",
  34. content: "telephone=no",
  35. },
  36. ],
  37. link: [
  38. {
  39. rel: "icon",
  40. type: "image/x-icon",
  41. href: "/favicon.ico",
  42. },
  43. {
  44. rel: "preconnect",
  45. href: "https://fonts.googleapis.com",
  46. },
  47. {
  48. rel: "preconnect",
  49. href: "https://fonts.gstatic.com",
  50. },
  51. {
  52. rel: "stylesheet",
  53. href: "https://fonts.googleapis.com/css2?family=DM+Sans&display=swap",
  54. },
  55. {
  56. rel: "stylesheet",
  57. href: "https://fonts.googleapis.com/css2?family=Damion&display=swap",
  58. },
  59. {
  60. rel: "stylesheet",
  61. type: "text/css",
  62. href: "https://cdnjs.cloudflare.com/ajax/libs/Swiper/8.1.4/swiper-bundle.css",
  63. },
  64. ],
  65. },
  66. // Global CSS: https://go.nuxtjs.dev/config-css
  67. css: [
  68. 'element-ui/lib/theme-chalk/index.css',
  69. // '@/assets/css/tailwind.css',
  70. "@/assets/css/showeasy-tailwind.css",
  71. "@/assets/scss/all.scss",
  72. "@/assets/scss/editor.scss",
  73. "swiper/swiper-bundle.css",
  74. ],
  75. render: {
  76. resourceHints: true, //啓用預加載
  77. asyncScripts: true
  78. },
  79. // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
  80. plugins: [
  81. { src: '@/plugins/element-ui', ssr: true },
  82. { src: "~/plugins/axios", ssr: true },
  83. { src: "~/plugins/vueLazyload.js", ssr: false },
  84. { src: "~/plugins/vue-awesome-swiper", ssr: false },
  85. { src: "~/plugins/vue-notification.js", ssr: false },
  86. { src: "~/plugins/vue-unicons", mode: "client" },
  87. { src: "~/plugins/vue-phone-number-input", mode: "client",ssr: false },
  88. { src: "~/plugins/scrollActive", ssr: false },
  89. { src: "~/plugins/vue-js-modal" },
  90. { src: "~/plugins/vue-time-picker", ssr: false },
  91. { src: "~/plugins/ant-design-vue"},
  92. { src: "~/plugins/vue-slider-component", ssr: false },
  93. { src: "~/plugins/vueCompositionAPI" },
  94. { src: "~/plugins/vue-scroll-to" },
  95. { src: "~/plugins/photoswipe", mode: "client", ssr: false },
  96. { src: "~/plugins/plugins-print", mode: "client", ssr: false },
  97. // {src: "~/plugins/storeCache", ssr: false },
  98. // { src: '@/plugins/router', ssr: false} // 先僅用路由前獲取OrgID
  99. ],
  100. // Auto import components: https://go.nuxtjs.dev/config-components
  101. components: true,
  102. // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
  103. buildModules: [
  104. // https://go.nuxtjs.dev/vuetify
  105. "@nuxtjs/vuetify",
  106. // '@nuxtjs/tailwindcss'
  107. '@nuxt/postcss8',
  108. "@nuxtjs/dotenv",
  109. ],
  110. // Modules: https://go.nuxtjs.dev/config-modules
  111. modules: [
  112. // https://go.nuxtjs.dev/axios
  113. '@nuxtjs/axios',
  114. "@nuxtjs/i18n",
  115. "@nuxtjs/auth-next",
  116. "@nuxtjs/robots",
  117. "nuxt-route-meta",
  118. "cookie-universal-nuxt",
  119. ["vue-scrollto/nuxt", { duration: 300 }],
  120. ],
  121. // Axios module configuration: https://go.nuxtjs.dev/config-axios
  122. axios: {
  123. // Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308
  124. // baseURL: 'http://beta.ptcgvip.com',
  125. proxy: true,
  126. // prefix: '/api'
  127. },
  128. server: {
  129. https: {
  130. key: fs.readFileSync(path.resolve(__dirname, 'SSL/key_showeasy_com.key')),
  131. cert: fs.readFileSync(path.resolve(__dirname, 'SSL/cert_showeasy_com.crt')),
  132. }
  133. },
  134. proxy: {
  135. '/trending': {
  136. // target: 'http://www.origtek.com:3002',// 服務地址
  137. target: 'https://showeasy.com:5000',// API 正式機
  138. // target: 'http://showeasy.com:3001',// API 測式機 (無SSL)
  139. <<<<<<< Updated upstream
  140. =======
  141. // target: 'http://localhost:3466',// API 本機 (無SSL)
  142. >>>>>>> Stashed changes
  143. pathRewrite: {
  144. '^/trending': '/'
  145. },
  146. changeOrigin: true
  147. }
  148. },
  149. i18n: {
  150. vueI18n: {
  151. silentTranslationWarn: true,
  152. silentFallbackWarn: true,
  153. },
  154. // locales: ["en", "zh-tw"],
  155. defaultLocale: process.env.VUE_APP_I18N_LOCALE || "zh-tw",
  156. lazy: true,
  157. langDir: "~/locales/",
  158. locales: [
  159. // {
  160. // code: "en",
  161. // iso: "en-EN",
  162. // file: "en.json",
  163. // langQuery: "en-US",
  164. // title: "English",
  165. // text: "English (Global)",
  166. // },
  167. {
  168. code: "zh-tw",
  169. iso: "zh-TW",
  170. file: "zh-tw.json",
  171. langQuery: "zh-TW",
  172. title: "繁體中文",
  173. text: "繁體中文(台灣)",
  174. },
  175. ],
  176. },
  177. // 在nuxt.config.js中配置auth
  178. auth: {
  179. strategies: {
  180. local: {
  181. token: {
  182. required: false,
  183. },
  184. user: {
  185. property: "data",
  186. },
  187. endpoints: {
  188. login: {
  189. // url: '/member/users/login',
  190. url: "/trending/api/system/Login",
  191. methods: "post",
  192. },
  193. logout: false,
  194. user: false,
  195. },
  196. },
  197. // 需要使用@nuxtjs/auth-next
  198. facebook: {
  199. endpoints: {
  200. userInfo:
  201. "https://graph.facebook.com/v6.0/me?fields=id,first_name,last_name,email,picture{url}",
  202. },
  203. clientId: "1080300752875237",
  204. scope: ["public_profile", "email"],
  205. },
  206. google: {
  207. clientId:
  208. "707328878971-7prt1v233u2e78e7ugp4sqlso5c2bpk5.apps.googleusercontent.com",
  209. responseType: "token id_token",
  210. codeChallengeMethod: "",
  211. },
  212. },
  213. redirect: {
  214. login: "/user",
  215. callback: "/user/socialCallback",
  216. home: false,
  217. logout: "/",
  218. },
  219. plugins: ["@/plugins/auth-lang-redirect.js"],
  220. localStorage: false,
  221. watchLoggedIn: false,
  222. },
  223. router: {
  224. middleware: ['auth'],
  225. },
  226. // Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
  227. vuetify: {
  228. customVariables: ["~/assets/scss/_variables.scss"],
  229. treeShake: true,
  230. theme: {
  231. dark: false,
  232. themes: {
  233. light: {
  234. primary: {
  235. base: "#EE9546",
  236. lighten1: "#F5CDA8",
  237. lighten2: "#F7EDE4",
  238. },
  239. warning: {
  240. base: "#EF5A5A",
  241. lighten1: "#E99E9E",
  242. },
  243. complementary: {
  244. base: "#7997FF",
  245. lighten1: "#F4B927",
  246. },
  247. neutrals: {
  248. base: "#FEFEFE",
  249. darken1: "#F8F8F8",
  250. darken2: "#E5E5E5",
  251. darken3: "#9C9C9C",
  252. darken4: "#504F4F",
  253. darken5: "#232323",
  254. },
  255. },
  256. dark: {
  257. primary: colors.blue.darken2,
  258. accent: colors.grey.darken3,
  259. secondary: colors.amber.darken3,
  260. info: colors.teal.lighten1,
  261. warning: colors.amber.base,
  262. error: colors.deepOrange.accent4,
  263. success: colors.green.accent3,
  264. },
  265. },
  266. },
  267. breakpoint: {
  268. thresholds: {
  269. xs: 390,
  270. sm: 540,
  271. md: 768,
  272. lg: 1280,
  273. xl: 1366,
  274. },
  275. },
  276. },
  277. // 允許爬蟲抓取
  278. robots: {
  279. UserAgent: "*",
  280. Allow: "*",
  281. },
  282. googleFonts: {},
  283. // Build Configuration: https://go.nuxtjs.dev/config-build
  284. build: {
  285. vendor: ['element-ui'],
  286. postcss: {
  287. plugins: {
  288. tailwindcss: {},
  289. autoprefixer: {},
  290. },
  291. },
  292. terser: {
  293. // https://github.com/terser/terser#compress-options
  294. terserOptions: {
  295. compress: {
  296. drop_console: true // 生產環境中禁用console.log
  297. }
  298. }
  299. },
  300. extend (config, { isDev, isClient }) {
  301. config.node = {
  302. fs: 'empty'
  303. }
  304. },
  305. extractCSS: process.env.ENV === 'production',
  306. //html minify
  307. html:{
  308. minify:{
  309. collapseBooleanAttributes: true,
  310. decodeEntities: true,
  311. minifyCSS: true,
  312. minifyJS: true,
  313. processConditionalComments: true,
  314. removeEmptyAttributes: true,
  315. removeRedundantAttributes: true,
  316. trimCustomFragments: true,
  317. useShortDoctype: true,
  318. minifyURLs: true,
  319. removeComments: true,
  320. removeEmptyElements: true
  321. }
  322. },
  323. }
  324. }